home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Almathera Ten Pack 2: CDPD 1
/
Almathera Ten on Ten - Disc 2: CDPD 1.iso
/
pd
/
176-200
/
190
/
nethack
/
een.zoo
/
spell.h
< prev
next >
Wrap
C/C++ Source or Header
|
1988-07-01
|
330b
|
19 lines
/* SCCS Id: @(#)spell.h 2.1 87/10/18
/* M. Stephenson 07-07-86 */
#ifndef SPELL_H
#define SPELL_H
struct spell {
int sp_id; /* spell id */
int sp_lev; /* power level */
int sp_flags; /* spfx flags */
#ifdef HARD
int sp_uses; /* uses left to spell */
#endif
};
#endif